home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / sysdeps / generic / lshift.c < prev    next >
C/C++ Source or Header  |  1994-04-26  |  2KB  |  87 lines

  1. /* __mpn_lshift -- Shift left low level.
  2.  
  3. Copyright (C) 1991, 1993, 1994 Free Software Foundation, Inc.
  4.  
  5. This file is part of the GNU MP Library.
  6.  
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Library General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or (at your
  10. option) any later version.
  11.  
  12. The GNU MP Library is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
  15. License for more details.
  16.  
  17. You should have received a copy of the GNU Library General Public License
  18. along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
  19. the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
  20.  
  21. #include "gmp.h"
  22. #include "gmp-impl.h"
  23.  
  24. /* Shift U (pointed to by UP and USIZE digits long) CNT bits to the left
  25.    and store the USIZE least significant digits of the result at WP.
  26.    Return the bits shifted out from the most significant digit.
  27.  
  28.    Argument constraints:
  29.    1. 0 < CNT < BITS_PER_MP_LIMB
  30.    2. If the result is to be written over the input, WP must be >= UP.
  31. */
  32.  
  33. mp_limb
  34. #if __STDC__
  35. __mpn_lshift (register mp_ptr wp,
  36.         register mp_srcptr up, mp_size_t usize,
  37.         register unsigned int cnt)
  38. #else
  39. __mpn_lshift (wp, up, usize, cnt)
  40.      register mp_ptr wp;
  41.      register mp_srcptr up;
  42.      mp_size_t usize;
  43.      register unsigned int cnt;
  44. #endif
  45. {
  46.   register mp_limb high_limb, low_limb;
  47.   register unsigned sh_1, sh_2;
  48.   register mp_size_t i;
  49.   mp_limb retval;
  50.  
  51. #ifdef DEBUG
  52.   if (usize == 0 || cnt == 0)
  53.     abort ();
  54. #endif
  55.  
  56.   sh_1 = cnt;
  57. #if 0
  58.   if (sh_1 == 0)
  59.     {
  60.       if (wp != up)
  61.     {
  62.       /* Copy from high end to low end, to allow specified input/output
  63.          overlapping.  */
  64.       for (i = usize - 1; i >= 0; i--)
  65.         wp[i] = up[i];
  66.     }
  67.       return 0;
  68.     }
  69. #endif
  70.  
  71.   wp += 1;
  72.   sh_2 = BITS_PER_MP_LIMB - sh_1;
  73.   i = usize - 1;
  74.   low_limb = up[i];
  75.   retval = low_limb >> sh_2;
  76.   high_limb = low_limb;
  77.   while (--i >= 0)
  78.     {
  79.       low_limb = up[i];
  80.       wp[i] = (high_limb << sh_1) | (low_limb >> sh_2);
  81.       high_limb = low_limb;
  82.     }
  83.   wp[i] = high_limb << sh_1;
  84.  
  85.   return retval;
  86. }
  87.